home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
Software
/
Servis
/
X-setup
/
_SETUP.1
/
XQ IE Zone Descriptions.xpl
< prev
next >
Wrap
Text File
|
1999-07-16
|
1KB
|
43 lines
"FILE"="Xteq Systems X-Setup Plugin 5.0"
"TYPE"="1"
"COUNT"="4"
"UIPATH"="Internet\Internet Explorer\Appearance\Zones"
"NAME"="Zone Descriptions"
"LANGUAGE"="VBScript"
"VERSION"="1.31"
"TEXT 1"="Zone #1 Desc"
"TEXT 2"="Zone #2 Desc"
"TEXT 3"="Zone #3 Desc"
"TEXT 4"="Zone #4 Desc"
"DESCRIPTION 1"="IE 4.0 and above divide the internet into different Zones. You can change the descriptions for this zones here."
"DESCRIPTION 2"="To view these items, start Internet Explorer, select "Options" from the "View" menu and click on the "Security" tab."
"AUTHOR"="Xteq Systems"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
sPath="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\"
sValue="\Description"
Sub Plugin_Initialize
if RegPathExists(sPath) then
for l=1 to 4
s=RegReadValue(sPath & l & sValue)
Call SetUIElement(l,s)
next
else
Disable
end if
End Sub
Sub Plugin_CheckData(ElementIndex)
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
for l=1 to 4
s=GetUIElement(l)
Call RegWriteValue(sPath & l & sValue,s,1)
next
End Sub
Sub Plugin_Terminate
End Sub